home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / Examples / Example3.iss < prev    next >
Text File  |  2006-10-03  |  1KB  |  36 lines

  1. ; -- Example3.iss --
  2. ; Same as Example1.iss, but creates some registry entries too.
  3.  
  4. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  5.  
  6. [Setup]
  7. AppName=My Program
  8. AppVerName=My Program version 1.5
  9. DefaultDirName={pf}\My Program
  10. DefaultGroupName=My Program
  11. UninstallDisplayIcon={app}\MyProg.exe
  12. OutputDir=userdocs:Inno Setup Examples Output
  13.  
  14. [Files]
  15. Source: "MyProg.exe"; DestDir: "{app}"
  16. Source: "MyProg.chm"; DestDir: "{app}"
  17. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  18.  
  19. [Icons]
  20. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  21.  
  22. ; NOTE: Most apps do not need registry entries to be pre-created. If you
  23. ; don't know what the registry is or if you need to use it, then chances are
  24. ; you don't need a [Registry] section.
  25.  
  26. [Registry]
  27. ; Start "Software\My Company\My Program" keys under HKEY_CURRENT_USER
  28. ; and HKEY_LOCAL_MACHINE. The flags tell it to always delete the
  29. ; "My Program" keys upon uninstall, and delete the "My Company" keys
  30. ; if there is nothing left in them.
  31. Root: HKCU; Subkey: "Software\My Company"; Flags: uninsdeletekeyifempty
  32. Root: HKCU; Subkey: "Software\My Company\My Program"; Flags: uninsdeletekey
  33. Root: HKLM; Subkey: "Software\My Company"; Flags: uninsdeletekeyifempty
  34. Root: HKLM; Subkey: "Software\My Company\My Program"; Flags: uninsdeletekey
  35. Root: HKLM; Subkey: "Software\My Company\My Program\Settings"; ValueType: string; ValueName: "Path"; ValueData: "{app}"
  36.